projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac6ddfc
)
* buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
author
Ken Raeburn
<raeburn@raeburn.org>
Mon, 3 Jun 2002 18:03:14 +0000
(18:03 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Mon, 3 Jun 2002 18:03:14 +0000
(18:03 +0000)
src/buffer.c
patch
|
blob
|
history
diff --git
a/src/buffer.c
b/src/buffer.c
index 39d8d957a7569523f263f03bfded025104ea03bb..103715c80c8fa36973446e1c3a471d959559d2f2 100644
(file)
--- a/
src/buffer.c
+++ b/
src/buffer.c
@@
-3424,7
+3424,8
@@
fix_overlays_before (bp, prev, pos)
Lisp_Object found = tail;
/* Unlink the found overlay. */
- XSETCDR (parent, XCDR (found));
+ tail = XCDR (found);
+ XSETCDR (parent, tail);
/* Move an overlay at RIGHT_PLACE to the next of the found one,
and link it into the right place. */
if (NILP (right_pair))